
This resource address deletes the JWT secret with the specified key-IDs given in the payload from the specified external security configuration.
| Request Headers | |
|---|---|
| accept | The expected MIME type of the response. If the
format parameter is present, it takes precedence over the Accept header.
|
Upon successful completion, MarkLogic Server returns status code 204 (No Content). If the external-security configuration does not exist, a status code of 400 (Bad Request) is returned. A status code of 401 (Unauthorized) is returned if the user does not have the necessary privileges.
manage-admin and security rolehttp://marklogic.com/xdmp/privileges/manage
http://marklogic.com/xdmp/privileges/manage-admin
http://marklogic.com/xdmp/privileges/external-security-get-authentication
cat JWTSecretsPayload.json
==>
{
"oauth-server": {
"oauth-jwt-secret": [
{
"oauth-jwt-key-id": "kid1"
},
{
"oauth-jwt-key-id": "kid2"
}
]
}
}
curl -X DELETE --anyauth -u admin:admin -H "Content-Type:application/json" \
-d @JWTSecretsPayload.json http://localhost:8002/manage/v2/external-security/MyExternalName
==> Deletes the JWT secrets with the key-IDs "kid1" and "kid2" from the external security configuration named "MyExternalName".